home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / programs / zdcs201.zip / ZDCS-ARC.BAT < prev    next >
DOS Batch File  |  1993-02-02  |  524b  |  17 lines

  1. REM %1 is the fully qualified FSpec of the currently processing file
  2. REM %2 is the Filename with Extension     - No drive/path information
  3. REM %3 is the Filename without Extension  - No drive/path information
  4. REM E:\TMP is a temporary work directory on any hard drive
  5.  
  6. REM Copy the file from the CD-ROM (or wherever it is)
  7. copy %1 e:\tmp
  8.  
  9. REM Convert the archive format to ZIP
  10. ZZAP e:\tmp\%2
  11.  
  12. REM Process the newly created ZIP file with ZDCSFC
  13. zdcsfc e:\tmp\%3ZIP UPLOAD
  14.  
  15. REM Get rid of it.
  16. DEL e:\tmp\%3ZIP
  17.